@forge/manifest 11.3.0 → 11.3.1-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 11.3.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8b66e6f: Improve logic of container tunnel config restrictions
8
+
3
9
  ## 11.3.0
4
10
 
5
11
  ### Minor Changes
@@ -29829,11 +29829,6 @@
29829
29829
  "properties": {
29830
29830
  "docker": {
29831
29831
  "type": "object",
29832
- "required": [
29833
- "build",
29834
- "image",
29835
- "ports"
29836
- ],
29837
29832
  "additionalProperties": false,
29838
29833
  "properties": {
29839
29834
  "build": {
@@ -74002,7 +74002,7 @@ export interface Resources1 {
74002
74002
  }
74003
74003
  export interface ContainerTunnelConfig {
74004
74004
  docker: {
74005
- build: {
74005
+ build?: {
74006
74006
  /**
74007
74007
  * Path to the build context directory. This is where docker will look for the Dockerfile and any other files referenced in the Dockerfile
74008
74008
  */
@@ -74015,11 +74015,11 @@ export interface ContainerTunnelConfig {
74015
74015
  /**
74016
74016
  * The name of the image to build
74017
74017
  */
74018
- image: string;
74018
+ image?: string;
74019
74019
  /**
74020
74020
  * The port mappings for the container. Traffic directed to the host (left) port will be forwarded to the container (right) port
74021
74021
  */
74022
- ports: string[];
74022
+ ports?: string[];
74023
74023
  /**
74024
74024
  * The custom environment variables available to the running processes in the container
74025
74025
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.3.0",
3
+ "version": "11.3.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {