Commit Graph

25663 Commits

Author SHA1 Message Date
Greg Wilkins b031681395 temporary remove of ee9 test
Signed-off-by: Greg Wilkins <gregw@webtide.com>
2022-07-04 11:37:45 +10:00
Greg Wilkins d1e6c772c6 updated moved HttpConnection to 12
Signed-off-by: Greg Wilkins <gregw@webtide.com>
2022-07-04 11:34:30 +10:00
Greg Wilkins b4aba02830 move HttpConnection
Signed-off-by: Greg Wilkins <gregw@webtide.com>
2022-07-04 11:33:01 +10:00
Greg Wilkins fe83ea87dc Merge remote-tracking branch 'origin/jetty-11.0.x' into jetty-12.0.x 2022-07-04 11:32:33 +10:00
Greg Wilkins bb8b1663d0 Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x 2022-07-04 10:57:40 +10:00
Greg Wilkins 2b817f06c6
Combined ByteBufferPool (#8171)
All `ByteBufferPool` can now be accessed as `RetainableByteBufferPools`.

Users now need to configure only a single buffer pool and there is just the additional retained parameter that needs consideration.
Default buffer pool has been changed to logarithmic, but we may wish to review that before next release.
Default factor size has been increased to 4096.
2022-07-04 10:38:30 +10:00
Greg Wilkins b694d6a084 Removed unnecessary decoration 2022-07-04 08:33:02 +10:00
dependabot[bot] 3a08f2dbdd
Bump org.eclipse.osgi from 3.17.200 to 3.18.0 (#8251)
Bumps [org.eclipse.osgi](https://github.com/eclipse-equinox/equinox.binaries) from 3.17.200 to 3.18.0.
- [Release notes](https://github.com/eclipse-equinox/equinox.binaries/releases)
- [Commits](https://github.com/eclipse-equinox/equinox.binaries/commits)

---
updated-dependencies:
- dependency-name: org.eclipse.platform:org.eclipse.osgi
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-03 16:59:41 -05:00
dependabot[bot] 581b0c334c
Bump google-cloud-datastore from 2.9.1 to 2.10.0 (#8261)
Bumps [google-cloud-datastore](https://github.com/googleapis/java-datastore) from 2.9.1 to 2.10.0.
- [Release notes](https://github.com/googleapis/java-datastore/releases)
- [Changelog](https://github.com/googleapis/java-datastore/blob/main/CHANGELOG.md)
- [Commits](https://github.com/googleapis/java-datastore/compare/v2.9.1...v2.10.0)

---
updated-dependencies:
- dependency-name: com.google.cloud:google-cloud-datastore
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-03 16:59:33 -05:00
Joakim Erdfelt a848c51620
Issue #8212 - Exclude spec 8.1.2.6 (#8228)
* Issue #8212 - Exclude spec 8.1.2.6 properly
2022-07-03 16:56:32 -05:00
dependabot[bot] ecbeceeca0
Bump jakarta.annotation-api from 2.1.0 to 2.1.1 (#8249)
Bumps [jakarta.annotation-api](https://github.com/eclipse-ee4j/common-annotations-api) from 2.1.0 to 2.1.1.
- [Release notes](https://github.com/eclipse-ee4j/common-annotations-api/releases)
- [Commits](https://github.com/eclipse-ee4j/common-annotations-api/compare/2.1.0...2.1.1)

---
updated-dependencies:
- dependency-name: jakarta.annotation:jakarta.annotation-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-03 07:08:01 -05:00
Joakim Erdfelt fe12a4322a
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x 2022-07-02 10:45:34 -05:00
dependabot[bot] 56baddbd07
Merge pull request #8254 from eclipse/dependabot/maven/jetty-11.0.x/net.java.dev.jna-jna-jpms-5.12.1 2022-07-02 12:58:18 +00:00
dependabot[bot] 27a89b284a
Merge pull request #8250 from eclipse/dependabot/maven/jetty-10.0.x/com.puppycrawl.tools-checkstyle-10.3.1 2022-07-02 12:35:35 +00:00
dependabot[bot] 80d5678f10
Merge pull request #8241 from eclipse/dependabot/maven/jetty-10.0.x/org.mariadb.jdbc-mariadb-java-client-3.0.6 2022-07-02 11:30:07 +00:00
dependabot[bot] c65438d2f3
Merge pull request #8239 from eclipse/dependabot/maven/jetty-11.0.x/com.puppycrawl.tools-checkstyle-10.3.1 2022-07-02 10:41:51 +00:00
dependabot[bot] b4de79c0fc
Merge pull request #8240 from eclipse/dependabot/maven/jetty-11.0.x/org.mariadb.jdbc-mariadb-java-client-3.0.6 2022-07-02 07:47:51 +00:00
Joakim Erdfelt 26c44f4033
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x 2022-07-01 16:25:50 -05:00
Joakim Erdfelt 7aa2d8def2
Issue #8222 - Addressing NPE with JvmArgs and non-existent modules. (#8223)
* Issue #8222 - Addressing NPE with JvmArgs and non-existent modules.

+ Better variable naming.
+ Simpler use case, without need for new StartArgs method
+ Correct naming in StartArgs.getEnabledModules
+ Introduce StartArgs.getSelectedModules
+ Change javadoc and usage everywhere else
* Stabilize flaky test by using UTC properly

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
2022-07-01 16:08:52 -05:00
dependabot[bot] df07299cdf
Merge pull request #8236 from eclipse/dependabot/maven/jetty-10.0.x/org.eclipse.platform-org.eclipse.osgi-3.18.0 2022-07-01 17:41:45 +00:00
dependabot[bot] 4f76527945
Merge pull request #8237 from eclipse/dependabot/maven/jetty-10.0.x/com.google.cloud-google-cloud-datastore-2.9.1 2022-07-01 11:57:50 +00:00
dependabot[bot] cb3c50ffa6
Merge pull request #8248 from eclipse/dependabot/maven/jetty-11.0.x/org.apache.maven.plugins-maven-enforcer-plugin-3.1.0 2022-07-01 09:29:16 +00:00
dependabot[bot] c0ab33536d
Merge pull request #8244 from eclipse/dependabot/maven/jetty-11.0.x/maven.version-3.8.6 2022-07-01 09:29:12 +00:00
dependabot[bot] 2ab437bfad
Merge pull request #8243 from eclipse/dependabot/maven/jetty-10.0.x/org.apache.maven.plugins-maven-enforcer-plugin-3.1.0 2022-07-01 09:26:46 +00:00
dependabot[bot] 417d5c5064
Merge pull request #8231 from eclipse/dependabot/maven/jetty-10.0.x/maven.version-3.8.6 2022-07-01 05:40:49 +00:00
dependabot[bot] 629ae05e65
Merge pull request #8234 from eclipse/dependabot/maven/jetty-10.0.x/org.testcontainers-testcontainers-bom-1.17.3 2022-07-01 05:39:15 +00:00
dependabot[bot] 7a947d9ad9
Merge pull request #8229 from eclipse/dependabot/maven/jetty-10.0.x/net.java.dev.jna-jna-jpms-5.12.1 2022-07-01 05:38:55 +00:00
dependabot[bot] d6733fe8f8
Bump jna-jpms from 5.11.0 to 5.12.1
Bumps [jna-jpms](https://github.com/java-native-access/jna) from 5.11.0 to 5.12.1.
- [Release notes](https://github.com/java-native-access/jna/releases)
- [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md)
- [Commits](https://github.com/java-native-access/jna/compare/5.11.0...5.12.1)

---
updated-dependencies:
- dependency-name: net.java.dev.jna:jna-jpms
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:09:27 +00:00
dependabot[bot] a54d09178c
Bump checkstyle from 10.3 to 10.3.1
Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 10.3 to 10.3.1.
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.3...checkstyle-10.3.1)

---
updated-dependencies:
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:08:24 +00:00
dependabot[bot] 91a3d53c08
Bump maven-enforcer-plugin from 3.0.0 to 3.1.0
Bumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/apache/maven-enforcer/releases)
- [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.0.0...enforcer-3.1.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-enforcer-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:07:55 +00:00
dependabot[bot] c8f8e6fcc7
Bump maven.version from 3.8.4 to 3.8.6
Bumps `maven.version` from 3.8.4 to 3.8.6.

Updates `maven-artifact` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-core` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-model` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-plugin-api` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-resolver-provider` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-settings` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

---
updated-dependencies:
- dependency-name: org.apache.maven:maven-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-model
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-plugin-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-resolver-provider
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-settings
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:06:48 +00:00
dependabot[bot] 57548cd6c1
Bump maven-enforcer-plugin from 3.0.0 to 3.1.0
Bumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/apache/maven-enforcer/releases)
- [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.0.0...enforcer-3.1.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-enforcer-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:06:30 +00:00
dependabot[bot] 679ee665a5
Bump mariadb-java-client from 3.0.5 to 3.0.6
Bumps [mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) from 3.0.5 to 3.0.6.
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.0.5...3.0.6)

---
updated-dependencies:
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:06:15 +00:00
dependabot[bot] 465d0cc2ed
Bump mariadb-java-client from 3.0.5 to 3.0.6
Bumps [mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) from 3.0.5 to 3.0.6.
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.0.5...3.0.6)

---
updated-dependencies:
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:05:56 +00:00
dependabot[bot] 587bd67158
Bump checkstyle from 10.3 to 10.3.1
Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 10.3 to 10.3.1.
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.3...checkstyle-10.3.1)

---
updated-dependencies:
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:05:49 +00:00
dependabot[bot] 7e2a1b9baf
Bump google-cloud-datastore from 2.7.0 to 2.9.1
Bumps [google-cloud-datastore](https://github.com/googleapis/java-datastore) from 2.7.0 to 2.9.1.
- [Release notes](https://github.com/googleapis/java-datastore/releases)
- [Changelog](https://github.com/googleapis/java-datastore/blob/main/CHANGELOG.md)
- [Commits](https://github.com/googleapis/java-datastore/compare/v2.7.0...v2.9.1)

---
updated-dependencies:
- dependency-name: com.google.cloud:google-cloud-datastore
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:05:45 +00:00
dependabot[bot] 3f4ff748bb
Bump org.eclipse.osgi from 3.17.200 to 3.18.0
Bumps [org.eclipse.osgi](https://github.com/eclipse-equinox/equinox.binaries) from 3.17.200 to 3.18.0.
- [Release notes](https://github.com/eclipse-equinox/equinox.binaries/releases)
- [Commits](https://github.com/eclipse-equinox/equinox.binaries/commits)

---
updated-dependencies:
- dependency-name: org.eclipse.platform:org.eclipse.osgi
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:05:31 +00:00
dependabot[bot] 2ffac3daf1
Bump testcontainers-bom from 1.17.2 to 1.17.3
Bumps [testcontainers-bom](https://github.com/testcontainers/testcontainers-java) from 1.17.2 to 1.17.3.
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.17.2...1.17.3)

---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:05:06 +00:00
dependabot[bot] 79c30effc0
Bump maven.version from 3.8.4 to 3.8.6
Bumps `maven.version` from 3.8.4 to 3.8.6.

Updates `maven-artifact` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-core` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-model` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-plugin-api` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-resolver-provider` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

Updates `maven-settings` from 3.8.4 to 3.8.6
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](https://github.com/apache/maven/compare/maven-3.8.4...maven-3.8.6)

---
updated-dependencies:
- dependency-name: org.apache.maven:maven-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-model
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-plugin-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-resolver-provider
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-settings
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:04:34 +00:00
dependabot[bot] 5974f74129
Bump jna-jpms from 5.11.0 to 5.12.1
Bumps [jna-jpms](https://github.com/java-native-access/jna) from 5.11.0 to 5.12.1.
- [Release notes](https://github.com/java-native-access/jna/releases)
- [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md)
- [Commits](https://github.com/java-native-access/jna/compare/5.11.0...5.12.1)

---
updated-dependencies:
- dependency-name: net.java.dev.jna:jna-jpms
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-01 02:03:45 +00:00
Joakim Erdfelt 69e818e9ae
skip default checkout option to avoid a useless git fetch (#8225) 2022-07-01 11:49:32 +10:00
Jan Bartel 5703fe5890 Include jetty-ee8 in build 2022-07-01 11:40:41 +10:00
Jan Bartel e15a66c77e Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12.0.x-jndi 2022-07-01 08:11:36 +10:00
Jonathan Leitschuh ea3dd1eca7
Add codeql-analysis.yml GitHub Actions Workflow (#7961) 2022-06-30 16:54:27 -05:00
Joakim Erdfelt 25d867f362
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x 2022-06-30 07:03:32 -05:00
Olivier Lamy db9eb08148
add jetty-osgi dependency to jetty-p2 to be sure it is included (#8034)
* add jetty-osgi dependency to jetty-p2 to be sure it is included

Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
2022-06-30 07:03:20 -05:00
Joakim Erdfelt 713925f1f8
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-11.0.x 2022-06-30 06:49:33 -05:00
Joakim Erdfelt 6a7a749966
Issue #7833 - Chunked Transfer-Encoding and HEAD response test (#8219) (#8226)
* Issue #7833 - Chunked Transfer-Encoding and HEAD response test

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
2022-06-30 06:48:51 -05:00
Greg Wilkins 7f952db090 Merge branch 'jetty-12.0.x' of github.com:eclipse/jetty.project into jetty-12.0.x 2022-06-30 17:07:42 +10:00
Jan Bartel 81b44ec658 Remove unused ee9 test module 2022-06-30 16:42:09 +10:00