Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-08-13 Thread Matthaus Owens (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Matthaus Owens commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
on el6, I'm not seeing any warnings generated. I get a syntax error with the future parser, and no change with 3.x parser. 
 
 
 
 
 
 
[root@jixh53ns9hrbnpc ~]# puppet apply -e 'class application { notify {$osfamily:}} include application' --parser=future 
 
 
 
 
Error: Could not parse for environment production: Syntax error at 'application'  at line 1:7 on node jixh53ns9hrbnpc.delivery.puppetlabs.net 
 
 
 
 
Error: Could not parse for environment production: Syntax error at 'application'  at line 1:7 on node jixh53ns9hrbnpc.delivery.puppetlabs.net 
 
 
 
 
 
 
and 
 
 
 
 
 
 
[root@jixh53ns9hrbnpc ~]# puppet apply -e 'class application { notify {$osfamily:}} include application' 
 
 
 
 
Notice: Compiled catalog for jixh53ns9hrbnpc.delivery.puppetlabs.net in environment production in 0.03 seconds 
 
 
 
 
Notice: RedHat 
 
 
 
 
Notice: /Stage[main]/Application/Notify[RedHat]/message: defined 'message' as 'RedHat' 
 
 
 
 
 

Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-08-13 Thread Ryan Whitehurst (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ryan Whitehurst commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
I see the same thing as Matthaus Owens on CentOS 7: 
 
 
 
 
 
 
bash-4.2$ lsb_release -d 
 
 
 
 
Description:CentOS Linux release 7.0.1406 (Core)  
 
 
 
 
bash-4.2$ puppet --version 
 
 
 
 
3.8.2 
 
 
 
 
bash-4.2$ puppet apply -e 'class application {}'   
 
 
 
 
Notice: Compiled catalog for openstack-controller1-dev in environment production in 0.02 seconds 
 
 
 
 
Notice: Finished catalog run in 0.06 seconds 
 
 
 
 
bash-4.2$ puppet apply --parser future -e 'class application {}'   
 
 
 
 

Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-08-04 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson assigned an issue to Eric Thompson 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

Assignee:
 
 qa EricThompson 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-08-04 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
validated on ubuntu14 at 3.x SHA: c5602b0 
 
 
 
 
 
 
[root@ovvn1j5ks8wcalw ~]# puppet apply -e 'consumes=yes;notify{consumes: message=no matter}' --parser future 
 
 
 
 
Warning: Use of future reserved word: 'consumes', must later be quoted if intended to be a String value  at line 1:1 
 
 
 
 
Error: Could not parse for environment production: Illegal attempt to assign to 'a Reserved Word 'consumes''. Not an assignable reference  at line 1:1 on node ovvn1j5ks8wcalw.delivery.puppetlabs.net 
 
 
 
 
Error: Could not parse for environment production: Illegal attempt to assign to 'a Reserved Word 'consumes''. Not an assignable reference  at line 1:1 on node ovvn1j5ks8wcalw.delivery.puppetlabs.net 
 
 
 
 
[root@ovvn1j5ks8wcalw ~]# puppet apply -e 'application=yes;notify{consumes: message=no matter}' --parser future 
 
 
 
 
Warning: Use of future reserved word: 'application', must later be quoted if intended to be a String value  at line 1:1 
 
 
 
 
Error: Could not parse for environment production: Illegal attempt to assign to 'a Reserved Word 'application''. Not an assignable reference  at line 1:1 on node ovvn1j5ks8wcalw.delivery.puppetlabs.net 
 
 
 
 
Error: Could not parse for environment production: Illegal attempt to assign to 'a Reserved Word 'application''. Not an assignable reference  at line 1:1 on 

Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-08-03 Thread Hailee Kenney (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Hailee Kenney assigned an issue to qa 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Hailee Kenney 
 
 
 

Status:
 
 Readyfor CI Test 
 
 
 

Assignee:
 
 qa 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-30 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
Merged to stable at d42cd2c and master at a165a95. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-30 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren assigned an issue to Thomas Hallgren 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Assignee:
 
 ThomasHallgren 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-30 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
Merged to 3.x at 9f1cc4e 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-30 Thread Thomas Hallgren (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Thomas Hallgren assigned an issue to Unassigned 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Thomas Hallgren 
 
 
 

Assignee:
 
 ThomasHallgren 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-29 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
cross that bridge then? do we think this needs its own acceptance at high priority? 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-29 Thread Eric Thompson (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Eric Thompson updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Eric Thompson 
 
 
 

QA Risk Assessment:
 
 Medium 
 
 
 

QA Highest Test Level:
 
 Unit 
 
 
 

QA Risk Assessment Reason:
 
 decentlycoveredbyunit.quickvalidation 
 
 
 

QA Status:
 
 Reviewed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-29 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
This ticket does not need its own acceptance test. Plenty of that later when the keywords starts to be used. Manual inspection/unit tests is fine. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-29 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg commented on  PUP-4941 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 
 
Eric Thompson This change may trip up some acceptance tests if they use the keywords and do not expect/accept warnings. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Fix Version/s:
 
 PUP4.2.2 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Component/s:
 
 DOCS 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg created an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 
 Henrik Lindberg 
 
 
 

Created:
 

 2015/07/28 1:51 PM 
 
 
 

Fix Versions:
 

 PUP 3.8.2 
 
 
 

Priority:
 
  Normal 
 
 
 

Reporter:
 
 Henrik Lindberg 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed 

Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Component/s:
 
 Language 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Release Notes Summary:
 
 Topreparefornewfeaturesinthe4.xseries,thebarewords'application','consumes'and'produces'havebeenmadeintoreservedwordsforwhichtherewillbeawarningwhenused.Thesewordsshouldnowbequotedifastringiswanted. 
 
 
 

Release Notes:
 
 NewFeature 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Release Notes Summary:
 
 Topreparefornewfeaturesinthe4.xseries,thebarewords'application','consumes'and'produces'havebeenmadeintoreservedwordswhenusingthefutureparser,andawarningisissuedwhen thesebarewordsare used.Thesewordsshouldnowbequotedifastringiswanted. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.


Jira (PUP-4941) Reserve keywords 'application', 'consumes', and 'produces'

2015-07-28 Thread Henrik Lindberg (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Henrik Lindberg updated an issue 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Puppet /  PUP-4941 
 
 
 
  Reserve keywords 'application', 'consumes', and 'produces'  
 
 
 
 
 
 
 
 
 

Change By:
 
 Henrik Lindberg 
 
 
 

Release Notes Summary:
 
 Topreparefornewfeaturesinthe4.xseries,thebarewords'application','consumes'and'produces'havebeenmadeintoreservedwords forwhichtherewillbe whenusingthefutureparser,and awarning isissued when thesebarewordsare used.Thesewordsshouldnowbequotedifastringiswanted. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.5#64020-sha1:78acd6c) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups Puppet Bugs group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.